home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 August: Tool Chest / Dev.CD Aug 95 TC / Dev.CD Aug 95 TC.toast / Tool Chest / Development Tools & Languages / Dylan Related / Mindy / Mindy 1.2 - portable sources / compat / rint.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-15  |  130 b   |  8 lines  |  [TEXT/ttxt]

  1. #include <math.h>
  2.  
  3. double rint(x) double x;
  4. {
  5.   /* uh, this is wrong unless rounding to -infinity */
  6.   return floor(x+0.5);                
  7. }
  8.